home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / psmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  1.2 KB  |  44 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef PSMainH
  3. #define PSMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-managed Components 
  14.     TPanel *Panel1;
  15.     TLabel *Label15;
  16.     TLabel *Label16;
  17.     TPanel *Panel3;
  18.     TLabel *Label1;
  19.     TLabel *Label2;
  20.     TPanel *Panel2;
  21.     TLabel *Label3;
  22.     TLabel *Label4;
  23.     TPanel *Panel4;
  24.     TLabel *Label5;
  25.     TLabel *Label6;
  26.     TPanel *Panel5;
  27.     TLabel *Label7;
  28.     TLabel *Label8;
  29.     TPanel *Panel6;
  30.     TLabel *Label9;
  31.     TPanel *Panel7;
  32.     TLabel *Label11;
  33.     TPanel *Panel8;
  34.     TLabel *Label13;
  35.     TLabel *Label14;
  36. private:        // User declarations
  37. public:         // User declarations
  38.     virtual __fastcall TForm1(TComponent* Owner);
  39. };
  40. //---------------------------------------------------------------------------
  41. extern TForm1 *Form1;
  42. //---------------------------------------------------------------------------
  43. #endif
  44.